Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Interface com.sun.java.accessibility.AccessibleTable


public abstract interface AccessibleTable
The AccessibleTable interface is currently up for review and should only be used for experimental purposes. Interested parties should review this interface and send comments to access@sun.com. Based upon feedback from reviewers, we may add a method to AccessibleContext (e.g., getAccessibleTable) that will return an object that implements this interface if the Accessible object is a table.

See Also:
Accessible, AccessibleContext

Method Summary
Accessible getAccessibleAt(int r, int c)
          Returns the Accessible at a given (row, column) in the table
int getAccessibleColumnAtIndex(int i)
          Returns the column at a given index into the table
int getAccessibleColumnCount()
          Returns the number of columns in the table
Accessible getAccessibleColumnHeader(int c)
          Return the header text of the specified column in the table
int getAccessibleIndexAt(int r, int c)
          Returns the index at a given (row, column) in the table
int getAccessibleRowAtIndex(int i)
          Returns the row at a given index into the table
int getAccessibleRowCount()
          Returns the number of rows in the table
Accessible getAccessibleRowHeader(int r)
          Return the header text of the specified row in the tabe
 

Method Detail

getAccessibleRowCount

public int getAccessibleRowCount()
Returns the number of rows in the table
Returns:
the number of rows in the table

getAccessibleColumnCount

public int getAccessibleColumnCount()
Returns the number of columns in the table
Returns:
the zero-based number of columns in the table

getAccessibleRowAtIndex

public int getAccessibleRowAtIndex(int i)
Returns the row at a given index into the table
Parameters:
i - zero-based index into the table
Returns:
the zero-based row at a given index

getAccessibleColumnAtIndex

public int getAccessibleColumnAtIndex(int i)
Returns the column at a given index into the table
Parameters:
i - zero-based index into the table
Returns:
the column at a given index

getAccessibleIndexAt

public int getAccessibleIndexAt(int r,
                                int c)
Returns the index at a given (row, column) in the table
Parameters:
r - zero-based row of the table
c - zero-based column of the table
Returns:
the index into the table

getAccessibleAt

public Accessible getAccessibleAt(int r,
                                  int c)
Returns the Accessible at a given (row, column) in the table
Parameters:
r - zero-based row of the table
c - zero-based column of the table
Returns:
the Accessible at the specified (row, column)

getAccessibleRowHeader

public Accessible getAccessibleRowHeader(int r)
Return the header text of the specified row in the tabe
Parameters:
r - zero-based row of the table
Returns:
the text header of the row

getAccessibleColumnHeader

public Accessible getAccessibleColumnHeader(int c)
Return the header text of the specified column in the table
Parameters:
c - zero-based column of the table
Returns:
the text header of the column

Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Submit a bug or feature
Submit comments/suggestions about javadoc
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.